all files / src/ast/ SpelNode.js

72.09% Statements 31/43
37.5% Branches 3/8
57.14% Functions 8/14
70.73% Lines 29/41
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114                                                  285× 285×           285×   285× 50×   285×       285× 127×   285× 178× 178×     285×     285× 178×     285×     285×       285× 23×     285× 23×       285×             285×                       285×             285× 285× 178×         285×              
/*
 * Copyright 2002-2015 the original author or authors.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
 
/**
 * The common supertype of all AST nodes in a parsed Spring Expression Language
 * format expression.
 *
 * @author Andy Clement
 * @author Ben March
 * @since 0.2.0
 */
 
function createSpelNode(nodeType, position, ...operands) {
    var node = {},
        type = nodeType || 'Abstract',
        children = [],
        parent = null,
        activeContext;
 
    node._type = type;
 
    node.getType = function () {
        return type;
    };
    node.setType = function (nodeType) {
        type = nodeType;
    };
 
    node.getChildren = function () {
        return children;
    };
    node.addChild = function (childNode) {
        childNode.setParent(node);
        children.push(childNode);
    };
 
    node.getParent = function () {
        return parent;
    };
    node.setParent = function (parentNode) {
        parent = parentNode;
    };
 
    node.getContext = function (state) {
        return activeContext || state.activeContext.peek();
    };
    node.setContext = function (nodeContext) {
        activeContext = nodeContext;
    };
 
    node.getStartPosition = function () {
        return (position >> 16);
    };
 
    node.getEndPosition = function () {
        return (position & 0xffff);
    };
 
    //must override
    node.getValue = function () {
        throw {
            name: 'MethodNotImplementedException',
            message: 'SpelNode#getValue() must be overridden.'
        };
    };
 
    node.toString = function () {
        var s = 'Kind: ' + node.getType();
        //s += ', Value: ' + node.getValue();
        s += ', Children: [';
        for (var i = 0, l = node.getChildren().length; i < l; i += 1) {
            s += '{' + node.getChildren()[i] + '}, ';
        }
        s += ']';
        return s;
    };
 
    //constructor
    if (Iposition === 0) {
        throw {
            name: 'Error',
            message: 'Position cannot be 0'
        };
    }
 
    if (Eoperands) {
        operands.forEach(function (operand) {
            node.addChild(operand);
        });
    }
 
 
    return node;
}
 
export var SpelNode = {
    create: createSpelNode
};